home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinXP 48-bit ATAPI drives 1.xpl < prev    next >
Text File  |  2004-03-22  |  2KB  |  44 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="6"
  3. "COUNT"="1"
  4. "UIPATH"="Hardware\Hard Disk"
  5. "NAME"="48-bit Logical Block Addressing Support"
  6. "LANGUAGE"="VBScript"
  7. "TEXT 1"="Enable 48-bit Logical Addressing Support"
  8. "DESCRIPTION 1"="If your ATAPI hard disk is bigger than 137 gigabytes, Windows XP (without any service pack) will be unable to take full advantage of it due to its 32-bit LBA support. This tweak allows you to use 48-bit LBA support - place a tick in the box to enable this."
  9. "DESCRIPTION 2"="WARNING: Your system MUST meet these requirements:"
  10. "DESCRIPTION 3"="ò You have a 48-bit LBA compatible BIOS"
  11. "DESCRIPTION 4"="ò You have a hard disk with a capacity greater than 137 gigabytes"
  12. "DESCRIPTION 5"="Enabling this on systems that do not meet these requirements MAY RESULT IN DATA LOSS! You have been warned!!!"
  13. "DESCRIPTION 6"="For more information, see article Q303013 in the Microsoft Knowledge Base."
  14. "VERSION"="1.05"
  15. "WARNING"="1"
  16. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved."
  18. "OSVERSION"="0000010"
  19. "CONTACTURL"="http://www.xteq.com/"
  20. "ADMINRIGHTS"="1"
  21. "COMMENT 1"="Thanks to CptSiskoX for the tip!"
  22. "COMMENT 2"="Thanks to controler for the bug notice!"
  23.  
  24. sP="HKLM\System\CurrentControlSet\Services\Atapi\Parameters\EnableBigLba"
  25.  
  26. SUB Plugin_Initialize
  27.  s=RegReadValue(sP)
  28.  if s=1 then
  29.   Call SetUIElement(1,true)
  30.  end if
  31. END SUB
  32.  
  33. SUB Plugin_Apply(ElementIndex,ElementSubIndex)
  34.  s=GetUIElement(1)
  35.  if s=true then
  36.   Call RegWriteValue(sP,1,2)
  37.  else
  38.   Call RegWriteValue(sP,0,2)
  39.  end if
  40. END SUB
  41.  
  42. SUB Plugin_Terminate
  43. END SUB
  44.